home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / DRIVER.CAB / sav416c2.ppd < prev    next >
Encoding:
PostScript Printer Description  |  2003-02-21  |  20.5 KB  |  651 lines

  1. *PPD-Adobe: "4.2"
  2. *%  Printer Description file
  3. *%    for "SAVIN SLP416c RPS"
  4. *%
  5. *%    CreationDate: 1998/07/28
  6. *%    Modified:     2000/11/07
  7. *%
  8. *%    COPYRIGHT (C) 1998-2000 RICOH COMPANY, LTD.
  9. *%    All rights reserved.
  10. *%
  11.  
  12. *FileVersion: "1.2"
  13. *FormatVersion: "4.2"
  14. *LanguageEncoding: ISOLatin1
  15. *LanguageVersion: English
  16. *PCFileName: "SAV416C2.PPD"
  17. *Product: "(RICOH-SCRIPT)"
  18. *PSVersion: "(2002.61) 2"
  19. *ModelName: "SAVIN SLP416c"
  20. *ShortNickName: "SAVIN SLP416c RPS"
  21. *NickName: "SAVIN SLP416c RPS"
  22.  
  23. *%========== Basic Device Capabilities ==========
  24. *LanguageLevel: "2"
  25.  
  26.  
  27. *Protocols: PJL BCP
  28. *JCLBegin: ""
  29. *JCLToPSInterpreter: "<1B><12>!1<2C>1@RPS<1B><20>"
  30. *JCLEnd: ""
  31.  
  32.  
  33. *ColorDevice: True
  34. *DefaultColorSpace: CMYK
  35. *TTRasterizer: Type42
  36. *FileSystem: True
  37. *?FileSystem: "
  38.   save
  39.   statusdict /diskonline get exec
  40.   {(True)}{(False)}ifelse = flush
  41.   restore
  42. "
  43. *End
  44.  
  45. *Throughput: "16"
  46.  
  47. *%========== Installable Options ==========
  48. *%========== & System Management ==========
  49.  
  50. *OpenGroup: InstallableOptions
  51. *OpenUI *InstalledMemory/Total Printer Memory: PickOne
  52. *InstalledMemory None/16MB: ""
  53. *InstalledMemory 32Meg/32MB: ""
  54. *InstalledMemory 48Meg/48MB: ""
  55. *?InstalledMemory: "
  56.   save
  57.   currentsystemparams /RamSize get 1048576 div round cvi
  58.   dup 16 eq { pop (None)}{
  59.     dup 32 eq 1 index 48 eq or
  60.       {(  ) cvs print (Meg)}{ pop (Unknown)} ifelse} ifelse = flush
  61.   restore
  62. "
  63. *End
  64. *DefaultInstalledMemory: None
  65. *CloseUI: *InstalledMemory
  66.  
  67. *OpenUI *Option1/Option Tray: PickOne
  68. *Option1 None/None: ""
  69. *Option1 1Cassette/Tray 2: ""
  70. *?Option1: "
  71.   save
  72.   {
  73.     currentpagedevice /InputAttributes get length
  74.     dup 2 eq { (None) exit } if
  75.     3 eq { (1Cassette) exit } if
  76.     (Unknown) exit
  77.   } loop
  78.   mark count 1 sub 2 roll cleartomark
  79.   = flush
  80.   restore
  81. "
  82. *End
  83. *DefaultOption1: None
  84. *CloseUI: *Option1
  85.  
  86. *CloseGroup: InstallableOptions
  87.  
  88. *UIConstraints: *Option1 None *InputSlot 2Tray
  89. *UIConstraints: *InputSlot 2Tray *Option1 None
  90.  
  91. *FreeVM: "3460000"
  92. *VMOption None/16 MB RAM: "3460000"
  93. *VMOption 32Meg/32 MB RAM: "10570000"
  94. *VMOption 48Meg/48 MB RAM: "12460000"
  95.  
  96. *Password: "0"
  97. *ExitServer: "
  98.   count 0 eq 
  99.   {false}{true exch startjob}ifelse
  100.   not {(WARNING: Cannot modify initial VM.) =
  101.        (Missing or invalid Password.) =
  102.        (Please contact the author.) = flush quit
  103.   }if
  104. "
  105. *End
  106. *Reset: "
  107.   count 0 eq
  108.   {false}{true exch startjob}ifelse
  109.   not {(WARNING: Cannot reset printer.) =
  110.        (Missing or invalid Password.) =
  111.        (Please contact the author.) = flush quit
  112.   }if 
  113.   systemdict /quit get exec
  114.   (WARNING: Printer Reset Failed.) = flush
  115. "
  116. *End
  117.  
  118. *SuggestedJobTimeout: "0"
  119. *SuggestedWaitTimeout: "300"
  120. *PrintPSErrors: True
  121. *DeviceAdjustedMatrix: "[1 0 0 1 0 0]"
  122.  
  123. *%========== Media Selection ==========
  124.  
  125. *OpenUI *PageSize: PickOne
  126. *OrderDependency: 60 AnySetup *PageSize
  127. *PageSize A4: "{statusdict /a4tray get exec}stopped {a4}if"
  128. *PageSize B5/B5 (JIS): "{statusdict /b5tray get exec}stopped {b5}if"
  129. *PageSize Letter/Letter: "{statusdict /lettertray get exec}stopped {letter}if"
  130. *PageSize Legal/Legal: "{statusdict /legaltray get exec}stopped {legal}if"
  131. *PageSize Executive/7.25x10.5: "
  132.   {statusdict /executivepagetray get exec}stopped {executivepage}if"
  133. *End
  134.  
  135. *?PageSize: "
  136.   save
  137.   currentpagedevice /PageSize get aload pop
  138.   2 copy gt {exch}if (Unknown)
  139.   5 dict
  140.     dup [595 842]  (A4) put
  141.     dup [516 729]  (B5) put
  142.     dup [612 792]  (Letter) put
  143.     dup [612 1008] (Legal) put
  144.     dup [522 756]  (Executive) put
  145.   {exch aload pop 4 index sub abs 5 le exch 5 index
  146.    sub abs 5 le and {exch pop exit}{pop}ifelse 
  147.   }bind forall = flush pop pop
  148.   restore
  149. "
  150. *End
  151. *DefaultPageSize: A4
  152. *CloseUI: *PageSize
  153.  
  154. *OpenUI *PageRegion: PickOne
  155. *OrderDependency: 75 AnySetup *PageRegion
  156. *PageRegion A4: "a4"
  157. *PageRegion B5/B5 (JIS): "b5"
  158. *PageRegion Letter/Letter: "letter"
  159. *PageRegion Legal/Legal: "legal"
  160. *PageRegion Executive/7.25x10.5: "executivepage"
  161.  
  162. *DefaultPageRegion: A4
  163. *CloseUI: *PageRegion
  164.  
  165. *%========== Information About Media Sizes ==========
  166.  
  167. *DefaultImageableArea: A4
  168. *ImageableArea A4: "11.52 12.84 583.56 830.64"
  169. *ImageableArea B5/B5 (JIS): "9.6 14.2801 504.84 716.88"
  170. *ImageableArea Letter/Letter: "9.6 12.72 600.84 780.6"
  171. *ImageableArea Legal/Legal: "7.68 10.56 598.92 997.32"
  172. *ImageableArea Executive/7.25x10.5: "3.60 11.04 502.68 744.36"
  173.  
  174. *?ImageableArea: "
  175.   save
  176.   /cvp {(            ) cvs print (               ) print}bind def
  177.   newpath clippath pathbbox 4 -2 roll exch
  178.   2 {10000 mul ceiling 10000 div cvp}repeat exch
  179.   2 {10000 mul floor 10000 div cvp}repeat flush
  180.   restore
  181. "
  182. *End
  183.  
  184. *DefaultPaperDimension: A4
  185. *PaperDimension A4: "595 842"
  186. *PaperDimension B5/B5 (JIS): "516 729"
  187. *PaperDimension Letter/Letter: "612 792"
  188. *PaperDimension Legal/Legal: "612 1008"
  189. *PaperDimension Executive/7.25x10.5: "522 756"
  190.  
  191.  
  192. *%========== Media Handling Features ==========
  193. *OpenUI *InputSlot: PickOne
  194. *OrderDependency: 70 AnySetup *InputSlot
  195. *InputSlot 1Tray/Tray 1: "
  196.   <</DeferredMediaSelection false>>setpagedevice
  197.   1 statusdict /setpapertray get {exec}stopped pop"
  198. *End
  199. *InputSlot 2Tray/Tray 2: "
  200.   <</DeferredMediaSelection false>>setpagedevice
  201.   2 statusdict /setpapertray get {exec}stopped pop"
  202. *End
  203. *?InputSlot: "
  204.   save
  205.   [null (1Tray)(2Tray)]
  206.   statusdict /papertray get exec {get}stopped
  207.   {pop pop (Unknown)}if = flush
  208.   restore
  209. "
  210. *End
  211. *DefaultInputSlot: 1Tray
  212. *CloseUI: *InputSlot
  213.  
  214. *%RequiresPageRegion ManualFeedTray: True
  215. *RequiresPageRegion 1Tray: False
  216. *RequiresPageRegion 2Tray: False
  217.  
  218. *OpenUI *TraySwitch/Auto Tray Switch: Boolean
  219. *OrderDependency: 30 AnySetup *TraySwitch
  220. *TraySwitch True/On: "<</TraySwitch true>>setpagedevice"
  221. *TraySwitch False/Off: "<</TraySwitch false>>setpagedevice"
  222. *?TraySwitch: "
  223.   save
  224.   currentpagedevice /TraySwitch get
  225.   {(True)}{(False)}ifelse = flush
  226.   restore
  227. "
  228. *End
  229. *DefaultTraySwitch: True
  230. *CloseUI: *TraySwitch
  231.  
  232. *%========== Resolution and Appearance Control ==========
  233.  
  234. *OpenUI *ColorModel/Color Mode: PickOne
  235. *OrderDependency: 20 AnySetup *ColorModel
  236. *ColorModel Gray/Black & White: "
  237.   << /ProcessColorModel /DeviceGray >> setpagedevice"
  238. *End
  239. *ColorModel CMYK/Color: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
  240. *?ColorModel: "
  241.   save
  242.   /UK (Unknown) def
  243.   {
  244.     currentpagedevice /ProcessColorModel 2 copy known not { UK exit } if
  245.     get dup /DeviceCMYK eq {(CMYK) exit }if dup /DeviceGray eq {(Gray) exit } if
  246.     UK exit
  247.   } bind loop
  248.   mark count 1 sub 2 roll cleartomark = flush
  249.   restore
  250. "
  251. *End
  252. *DefaultColorModel: CMYK
  253. *CloseUI: *ColorModel
  254.  
  255. *OpenUI *Resolution/Resolution: PickOne
  256. *OrderDependency: 10 AnySetup *Resolution
  257. *Resolution 300dpi: "<</HWResolution[300 300]>>setpagedevice"
  258. *Resolution 600dpi: "<</HWResolution[600 600]>>setpagedevice"
  259. *?Resolution: "
  260.   save
  261.   currentpagedevice /HWResolution get 0 get
  262.   (       ) cvs print (dpi) = flush
  263.   restore
  264. "
  265. *End
  266. *DefaultResolution: 600dpi
  267. *CloseUI: *Resolution
  268.  
  269. *OpenUI *RPSRGBcorrect/Color Setting: PickOne
  270. *OrderDependency: 100 AnySetup *RPSRGBcorrect
  271. *RPSRGBcorrect None/Off: "
  272.   << /DeviceRenderingInfo << /CustomRGB 0 >> >> setpagedevice"
  273. *End
  274. *RPSRGBcorrect VividNormal/Vivid: "
  275.   << /DeviceRenderingInfo << /CustomRGB 1 /SBWeight [1.4 1.8] >> >>
  276.   setpagedevice"
  277. *End
  278. *RPSRGBcorrect VividBright/Super Vivid: "
  279.   << /DeviceRenderingInfo << /CustomRGB 1 /SBWeight [1.7 2.2] >> >>
  280.   setpagedevice"
  281. *End
  282. *RPSRGBcorrect DetailNormal/Fine: "
  283.   << /DeviceRenderingInfo << /CustomRGB 2 /WhitePoint /6500K >> >>
  284.   setpagedevice"
  285. *End
  286. *RPSRGBcorrect DetailBright/Super Fine: "
  287.   << /DeviceRenderingInfo << /CustomRGB 2 /WhitePoint /5000K >> >>
  288.   setpagedevice"
  289. *End
  290. *?RPSRGBcorrect: "
  291.   save
  292.   /UK (Unknown) def
  293.   /toI { 10 mul round cvi } bind def
  294.   /VN_S 14 def /VN_B 18 def /VB_S 17 def /VB_B 22 def
  295.   {currentpagedevice /DeviceRenderingInfo 2 copy known not{UK exit}if
  296.     get /CustomRGB 2 copy known not{UK exit}if 1 index 3 1 roll get dup 0 eq{
  297.     (None) exit}if dup 1 eq{pop /SBWeight 2 copy known not{UK exit}if get dup 0
  298.     get toI VN_S eq 1 index 1 get toI VN_B eq and{(VividNormal) exit}if dup 0
  299.     get toI VB_S eq 1 index 1 get toI VB_B eq and{(VividBright) exit}if UK exit}
  300.     if 2 eq{/WhitePoint 2 copy known not{UK exit}if get dup /6500K eq{
  301.     (DetailNormal) exit}if /5000K eq{(DetailBright) exit}if UK exit}if UK exit
  302.   } bind loop
  303.   mark count 1 sub 2 roll cleartomark = flush
  304.   restore
  305. "
  306. *End
  307. *DefaultRPSRGBcorrect: VividNormal
  308. *CloseUI: *RPSRGBcorrect
  309.  
  310. *OpenUI *RPSColorRendDict/Color Profile: PickOne
  311. *OrderDependency: 40 AnySetup *RPSColorRendDict
  312. *RPSColorRendDict Photograph/Photograph: "
  313.   <</DeviceRenderingInfo << /CRDType /Photograph >> >> setpagedevice"
  314. *End
  315. *RPSColorRendDict Business/Presentation: "
  316.   <</DeviceRenderingInfo << /CRDType /Business >> >> setpagedevice"
  317. *End
  318. *RPSColorRendDict Colorimetric/Solid Color: "
  319.   <</DeviceRenderingInfo << /CRDType /Colorimetric >> >> setpagedevice"
  320. *End
  321. *?RPSColorRendDict: "
  322.   save
  323.   /UK (Unknown) def
  324.   {
  325.     currentpagedevice /DeviceRenderingInfo 2 copy known not { UK exit } if
  326.     get /CRDType 2 copy known not { UK exit } if
  327.     get dup /Photograph ne 1 index /Business ne and
  328.     1 index /Colorimetric ne and { UK exit }if
  329.     exit
  330.   } bind loop
  331.   mark count 1 sub 2 roll cleartomark = flush
  332.   restore
  333. "
  334. *End
  335. *DefaultRPSColorRendDict: Business
  336. *CloseUI: *RPSColorRendDict
  337.  
  338.  
  339. *OpenUI *RPSTonerSave/Toner Saving: PickOne
  340. *OrderDependency: 80 AnySetup *RPSTonerSave
  341. *RPSTonerSave False/Off : "
  342.   <</PostRenderingEnhance true
  343.     /PostRenderingEnhanceDetails << /Type 13 /OutputMode 0>>
  344.     >> setpagedevice"
  345. *End
  346. *RPSTonerSave True/On : "
  347.   <</PostRenderingEnhance true
  348.     /PostRenderingEnhanceDetails << /Type 13 /OutputMode 4>>
  349.     >> setpagedevice"
  350. *End
  351. *?RPSTonerSave: "
  352.   save
  353.   /UK (Unknown) def
  354.   {
  355.     currentpagedevice dup /PostRenderingEnhance 2 copy known not{UK exit}if
  356.     get not { (False) exit } if
  357.     /PostRenderingEnhanceDetails 2 copy known not { UK exit } if
  358.     get dup /Type 2 copy known not { UK exit } if
  359.     get dup type /integertype ne { UK exit } if
  360.     13 ne { UK exit } if
  361.     /OutputMode 2 copy known not { UK exit } if
  362.     get dup 0 eq { (False) exit } if
  363.     dup 4 eq exch 5 eq or { (True) exit } if
  364.     UK exit
  365.   } bind loop
  366.   mark count 1 sub 2 roll cleartomark
  367.   = flush
  368.   restore
  369. "
  370. *End
  371. *DefaultRPSTonerSave: False
  372. *CloseUI: *RPSTonerSave
  373.  
  374.  
  375. *OpenUI *RPSDitherType/Dithering: PickOne
  376. *OrderDependency: 90 AnySetup *RPSDitherType
  377. *RPSDitherType Photo/Photographic: "
  378.   << /DeviceRenderingInfo << /DitherType 1 >> >> setpagedevice"
  379. *End
  380. *RPSDitherType Letter/Text: "
  381.   << /DeviceRenderingInfo << /DitherType 2 >> >> setpagedevice"
  382. *End
  383. *?RPSDitherType: "
  384.   save
  385.   /UK (Unknown) def
  386.   {
  387.    currentpagedevice dup /DeviceRenderingInfo 2 copy known not{UK exit}if
  388.    get /DitherType 2 copy known not { UK exit } if
  389.    get dup 1 eq { (Photo) exit } if
  390.    2 eq { (Letter) exit } if
  391.    UK exit
  392.    } bind loop
  393.    mark count 1 sub 2 roll cleartomark
  394.    = flush
  395.    restore
  396. "
  397. *End
  398. *DefaultRPSDitherType: Photo
  399. *CloseUI: *RPSDitherType
  400.  
  401. *OpenUI *MediaType/Paper Type : PickOne
  402. *OrderDependency: 50 AnySetup *MediaType
  403. *MediaType Plain/Plain Paper: "<< /MediaType (Plain) >> setpagedevice"
  404. *MediaType Transparency/OHP Transparency: "
  405.   << /MediaType (Transparency)
  406.      /DeviceRenderingInfo << /CRDType /Transparency >> >> setpagedevice"
  407. *End
  408. *MediaType Thick/Thick Paper: "<< /MediaType (Thick) >> setpagedevice"
  409. *?MediaType: "
  410.   save
  411.   /UK (Unknown) def
  412.   {
  413.     currentpagedevice /MediaType 2 copy known not { UK exit } if
  414.     get dup null eq 1 index (Plain) eq or { (Plain) exit } if
  415.     dup (Transparency) eq { dup exit } if
  416.     dup (Thick) eq { dup exit } if
  417.     UK exit
  418.   } bind loop
  419.   mark count 1 sub 2 roll cleartomark
  420.   = flush
  421.   restore
  422. "
  423. *End
  424. *DefaultMediaType: Plain
  425. *CloseUI: *MediaType
  426.  
  427. *%========== Gray Levels and Halftoning ==========
  428. *AccurateScreensSupport: True
  429. *ScreenFreq: "100.0"
  430. *ScreenAngle: "45.0"
  431. *DefaultScreenProc: Dot
  432. *ScreenProc Dot: "
  433.   {abs exch abs 2 copy add 1 gt
  434.    {1 sub dup mul exch 1 sub dup mul add 1 sub}
  435.    {dup mul exch dup mul add 1 exch sub}
  436.    ifelse}
  437. "
  438. *End
  439. *ScreenProc Line: "{pop}"
  440. *ScreenProc Ellipse: "
  441.   {dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}
  442. "
  443. *End
  444.  
  445. *%========== Font ==========
  446.  
  447. *DefaultFont: Courier
  448. *Font Courier: Standard "(000.000)" Standard ROM
  449. *Font Courier-Bold: Standard "(000.000)" Standard ROM
  450. *Font Courier-Oblique: Standard "(000.000)" Standard ROM
  451. *Font Courier-BoldOblique: Standard "(000.000)" Standard ROM
  452. *Font Times-Bold: Standard "(000.000)" Standard ROM
  453. *Font Times-Italic: Standard "(000.000)" Standard ROM
  454. *Font Times-BoldItalic: Standard "(000.000)" Standard ROM
  455. *Font Times-Roman: Standard "(000.000)" Standard ROM
  456. *Font Helvetica: Standard "(000.000)" Standard ROM
  457. *Font Helvetica-Bold: Standard "(000.000)" Standard ROM
  458. *Font Helvetica-Oblique: Standard "(000.000)" Standard ROM
  459. *Font Helvetica-BoldOblique: Standard "(000.000)" Standard ROM
  460. *Font AvantGarde-Book: Standard "(000.000)" Standard ROM
  461. *Font AvantGarde-BookOblique: Standard "(000.000)" Standard ROM
  462. *Font AvantGarde-Demi: Standard "(000.000)" Standard ROM
  463. *Font AvantGarde-DemiOblique: Standard "(000.000)" Standard ROM
  464. *Font Bookman-Demi: Standard "(000.000)" Standard ROM
  465. *Font Bookman-DemiItalic: Standard "(000.000)" Standard ROM
  466. *Font Bookman-Light: Standard "(000.000)" Standard ROM
  467. *Font Bookman-LightItalic: Standard "(000.000)" Standard ROM
  468. *Font Helvetica-Narrow: Standard "(000.000)" Standard ROM
  469. *Font Helvetica-Narrow-Bold: Standard "(000.000)" Standard ROM
  470. *Font Helvetica-Narrow-BoldOblique: Standard "(000.000)" Standard ROM
  471. *Font Helvetica-Narrow-Oblique: Standard "(000.000)" Standard ROM
  472. *Font Helvetica-Condensed: Standard "(000.000)" Standard ROM
  473. *Font Helvetica-Condensed-Bold: Standard "(000.000)" Standard ROM
  474. *Font Helvetica-Condensed-BoldObl: Standard "(000.000)" Standard ROM
  475. *Font Helvetica-Condensed-Oblique: Standard "(000.000)" Standard ROM
  476. *Font NewCenturySchlbk-Bold: Standard "(000.000)" Standard ROM
  477. *Font NewCenturySchlbk-BoldItalic: Standard "(000.000)" Standard ROM
  478. *Font NewCenturySchlbk-Italic: Standard "(000.000)" Standard ROM
  479. *Font NewCenturySchlbk-Roman: Standard "(000.000)" Standard ROM
  480. *Font Palatino-Bold: Standard "(000.000)" Standard ROM
  481. *Font Palatino-BoldItalic: Standard "(000.000)" Standard ROM
  482. *Font Palatino-Italic: Standard "(000.000)" Standard ROM
  483. *Font Palatino-Roman: Standard "(000.000)" Standard ROM
  484. *Font ZapfChancery-MediumItalic: Standard "(000.000)" Standard ROM
  485. *Font Symbol: Special "(000.000)" Special ROM
  486. *Font ZapfDingbats: Special "(000.000)" Special ROM
  487.  
  488. *?FontQuery: "
  489.   save
  490.   {
  491.     count 1 gt {
  492.     exch dup 127 string cvs (/) print print (:) print
  493.     /Font resourcestatus {pop pop (Yes)}{(NO)}ifelse =
  494.     }{exit}ifelse 
  495.   }bind loop (*) = flush
  496.   restore
  497. "
  498. *End
  499.  
  500. *?FontList: "
  501.   save
  502.   (*) {cvn ==} 128 string /Font resourceforall (*) = flush
  503.   restore
  504. "
  505. *End
  506.  
  507. *%========== Printer Messages ==========
  508. *PrinterError: "initializing"
  509. *PrinterError: "holding"
  510. *PrinterError: "idle"
  511. *PrinterError: "busy"
  512. *PrinterError: "printing"
  513. *PrinterError: "toner near empty"
  514. *PrinterError: "waster toner near full"
  515. *PrinterError: "fuser oil near empty"
  516. *PrinterError: "command que buffer near full"
  517. *PrinterError: "maintenance #1"
  518. *PrinterError: "maintenance #2"
  519. *PrinterError: "maintenance #3"
  520. *PrinterError: "engine ready"
  521. *PrinterError: "warming up"
  522. *PrinterError: "power save mode"
  523. *PrinterError: "engine self test printing"
  524. *PrinterError: "toner end"
  525. *PrinterError: "waster toner full"
  526. *PrinterError: "fuser oil end"
  527. *PrinterError: "paper size error"
  528. *PrinterError: "paper path error"
  529. *PrinterError: "paper end"
  530. *PrinterError: "paper cassette not equipped"
  531. *PrinterError: "front cover open"
  532. *PrinterError: "rear over open"
  533. *PrinterError: "no color toner unit"
  534. *PrinterError: "no waste toner bottle"
  535. *PrinterError: "fuser error"
  536. *PrinterError: "no black toner unit"
  537. *PrinterError: "no OPC unit"
  538. *PrinterError: "jam"
  539. *PrinterError: "serviceman call #1"
  540. *PrinterError: "serviceman call #2"
  541. *PrinterError: "serviceman call #3"
  542. *PrinterError: "serviceman call #4"
  543. *PrinterError: "serviceman call #5"
  544. *PrinterError: "serviceman call #6"
  545. *PrinterError: "serviceman call #7"
  546. *PrinterError: "serviceman call #8"
  547. *PrinterError: "serviceman call #9"
  548. *PrinterError: "serviceman call #10"
  549. *PrinterError: "serviceman call #11"
  550. *PrinterError: "serviceman call #17"
  551. *PrinterError: "complex page, image down-sampled"
  552.  
  553. *Status: "initializing"
  554. *Status: "holding"
  555. *Status: "idle"
  556. *Status: "busy"
  557. *Status: "printing"
  558. *Status: "PrinterError: toner near empty"
  559. *Status: "PrinterError: waster toner near full"
  560. *Status: "PrinterError: fuser oil near empty"
  561. *Status: "PrinterError: command que buffer near full"
  562. *Status: "PrinterError: maintenance #1"
  563. *Status: "PrinterError: maintenance #2"
  564. *Status: "PrinterError: maintenance #3"
  565. *Status: "PrinterError: engine ready"
  566. *Status: "PrinterError: warming up"
  567. *Status: "PrinterError: power save mode"
  568. *Status: "PrinterError: engine self test printing"
  569. *Status: "PrinterError: toner end"
  570. *Status: "PrinterError: waster toner full"
  571. *Status: "PrinterError: fuser oil end"
  572. *Status: "PrinterError: paper size error"
  573. *Status: "PrinterError: paper path error"
  574. *Status: "PrinterError: paper end"
  575. *Status: "PrinterError: paper cassette not equipped"
  576. *Status: "PrinterError: front cover open"
  577. *Status: "PrinterError: rear over open"
  578. *Status: "PrinterError: no color toner unit"
  579. *Status: "PrinterError: no waste toner bottle"
  580. *Status: "PrinterError: fuser error"
  581. *Status: "PrinterError: no black toner unit"
  582. *Status: "PrinterError: no OPC unit"
  583. *Status: "PrinterError: jam"
  584. *Status: "PrinterError: serviceman call #1"
  585. *Status: "PrinterError: serviceman call #2"
  586. *Status: "PrinterError: serviceman call #3"
  587. *Status: "PrinterError: serviceman call #4"
  588. *Status: "PrinterError: serviceman call #5"
  589. *Status: "PrinterError: serviceman call #6"
  590. *Status: "PrinterError: serviceman call #7"
  591. *Status: "PrinterError: serviceman call #8"
  592. *Status: "PrinterError: serviceman call #9"
  593. *Status: "PrinterError: serviceman call #10"
  594. *Status: "PrinterError: serviceman call #11"
  595. *Status: "PrinterError: serviceman call #17"
  596. *Status: "PrinterError: complex page, image down-sampled"
  597.  
  598. *Source: "Centronics"
  599. *Source: "TCP/IP"
  600. *Source: "NetBEUI"
  601. *Source: "SPX/IPX"
  602. *Source: "EtherTalk"
  603.  
  604. *Message: "%%[ exitserver: permanent state may be changed ]%%"
  605. *Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
  606. *Message: "\FontName\ not found, using Courier"
  607.  
  608. *%========== Color Separation ==========
  609.  
  610. *DefaultColorSep: ProcessBlack.100lpi.600dpi/100 lpi / 600 dpi
  611.  
  612. *InkName: ProcessBlack/Process Black
  613. *InkName: CustomColor/Custom Color
  614. *InkName: ProcessCyan/Process Cyan
  615. *InkName: ProcessMagenta/Process Magenta
  616. *InkName: ProcessYellow/Process Yellow
  617.  
  618. *%===== For 100 lpi / 600 dpi =====
  619.  
  620. *ColorSepScreenAngle ProcessBlack.100lpi.600dpi/100 lpi / 600 dpi: "45.0"
  621. *ColorSepScreenAngle CustomColor.100lpi.600dpi/100 lpi / 600 dpi: "45.0"
  622. *ColorSepScreenAngle ProcessCyan.100lpi.600dpi/100 lpi / 600 dpi: "15.0"
  623. *ColorSepScreenAngle ProcessMagenta.100lpi.600dpi/100 lpi / 600 dpi: "75.0"
  624. *ColorSepScreenAngle ProcessYellow.100lpi.600dpi/100 lpi / 600 dpi: "0.0"
  625.  
  626. *ColorSepScreenFreq ProcessBlack.100lpi.600dpi/100 lpi / 600 dpi: "100"
  627. *ColorSepScreenFreq CustomColor.100lpi.600dpi/100 lpi / 600 dpi: "100"
  628. *ColorSepScreenFreq ProcessCyan.100lpi.600dpi/100 lpi / 600 dpi: "100"
  629. *ColorSepScreenFreq ProcessMagenta.100lpi.600dpi/100 lpi / 600 dpi: "100"
  630. *ColorSepScreenFreq ProcessYellow.100lpi.600dpi/100 lpi / 600 dpi: "100"
  631.  
  632. *%===== For 60 lpi / 300 dpi =====
  633.  
  634. *ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45.0"
  635. *ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45.0"
  636. *ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15.0"
  637. *ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75.0"
  638. *ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0.0"
  639.  
  640. *ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
  641. *ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
  642. *ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
  643. *ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
  644. *ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
  645.  
  646. *%
  647. *%      COPYRIGHT(C) 1998-2000 RICOH COMPANY, LTD.
  648. *%      All rights reserved.
  649. *%
  650. *% end of Printer Description file for "SAVIN SLP416c RPS"
  651.